home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / HippoDraw / HippoDrawSrc1.1 / Hippo.subproj / Plot2D.m < prev    next >
Encoding:
Text File  |  1992-04-25  |  481 b   |  22 lines

  1. /* Plot2D.m    By Paul Kunz    March 1992
  2.  * Replacement of obsolete class used for backward compatiblity.
  3.  *
  4.  * Copyright (C)  1991  The Board of Trustees of  
  5.  * The Leland Stanford Junior University.  All Rights Reserved.
  6.  */
  7.  
  8. #import "Plot2D.h"
  9.  
  10. const char Plot2D_h_rcsid[] = PLOT2D_H_ID;
  11. const char Plot2D_m_rcsid[] = "$Id: Plot2D.m,v 1.10 1992/03/21 20:21:57 pfkeb Rel $";
  12.  
  13. @implementation Plot2D
  14.  
  15. - read:(NXTypedStream *)stream
  16. {
  17.     [super read:stream];
  18.     return self;
  19. }
  20.  
  21. @end
  22.